The <ins> tag sets a text that has been added to a document. Browsers often put a line under added words.
The <kbd> HTML element is used to show a group of words that users type from a keyboard, voice input or any other way they enter text. Usually, the user agent (like a browser or device) uses its normal simple font to display content in <kbd> tag. However, this is not required by HTML rules.
The "<kbd>" tag is used to show keyboard input. What's shown inside is in the browser's usual simple writing style.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
To open the developer console, type
<code><kbd>F12</kbd> </code> or
<code><kbd>Ctrl/<kbd> + <kbd>Shift</kbd> + <kbd>I</kbd></code>.
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>